home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ Remote Font Boot Cache.xpl < prev    next >
Text File  |  2001-04-26  |  1KB  |  45 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="6"
  3. "COUNT"="1"
  4. "UIPATH"="Appearance\Interface\TrueType Fonts"
  5. "NAME"="Remote Font Boot Cache"
  6. "VERSION"="1.02"
  7. "OSVERSION"=000101"
  8. "LANGUAGE"="VBScript"
  9. "TEXT 1"="Enable Remote Font Boot Cache"
  10. "DESCRIPTION 1"="This option determines if Remote Font Boot Cache is enabled or not."
  11. "DESCRIPTION 2"="Disabling this option (unchecking it) may increase system performance slightly."
  12. "AUTHOR"="Xteq Systems (CptSiskoX)"
  13. "CONTACTURL"="http://www.xteq.com"
  14. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  15. "COMMENT 1"="Found during registry exploration of Windows XP and Windows 2000."
  16.  
  17.  
  18. sV1="HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\GRE_Initialize\DisableRemoteFontBootCache" 'DW 
  19.  
  20. Sub Plugin_Initialize 
  21.  i=RegReadValue(sV1)
  22.  if i=0 or IsEmpty(i) then 
  23.     setuielement 1,true
  24.  end if
  25.  
  26. End Sub
  27.  
  28. Sub Plugin_CheckData(ElementIndex)
  29. End Sub
  30.  
  31. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  32.  if GetUIElement(1)=true then
  33.     v=0
  34.  else
  35.     v=1
  36.  end if
  37.  
  38.  Call RegWriteValue(sV1,v,2)
  39.  
  40.  
  41. End Sub
  42.  
  43. Sub Plugin_Terminate 
  44. End Sub
  45.